home *** CD-ROM | disk | FTP | other *** search
/ All for Cell Phones: Sony Ericsson / Sony-Ericsson 2004.iso / Java / Excel / Sheet.jar / sheet / CellContainer.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-09-03  |  328 b   |  14 lines

  1. package sheet;
  2.  
  3. interface CellContainer {
  4.    Cell getByName(String var1) throws IllegalArgumentException;
  5.  
  6.    short getRowHeight(int var1);
  7.  
  8.    short getColumnWidth(int var1);
  9.  
  10.    void calculate();
  11.  
  12.    void notifyChanged();
  13. }
  14.